mirror of
https://github.com/luxfi/dao.git
synced 2026-07-27 02:51:24 +00:00
- Add packages/wallet with Solana/EVM providers - Add comprehensive DAO governance documentation - Fix gitignore to cover nested node_modules - Update submodule refs
13 lines
359 B
TypeScript
13 lines
359 B
TypeScript
import { AlertProps } from "@mui/material";
|
|
import { FC } from "react";
|
|
export interface PARSAlertProps {
|
|
open: boolean;
|
|
severity: AlertProps["severity"];
|
|
title: string;
|
|
text: string;
|
|
onClose: () => void;
|
|
progress: number;
|
|
}
|
|
declare const Alert: FC<PARSAlertProps>;
|
|
export default Alert;
|
|
//# sourceMappingURL=Alert.d.ts.map
|