/// import { PublicBaseProps } from './Base'; declare const variants: { info: { color: string; bg: string; borderColor: string; }; success: { color: string; bg: string; borderColor: string; }; warn: { color: string; bg: string; borderColor: string; }; error: { color: string; bg: string; borderColor: string; }; }; export declare type FlashProps = { variant?: keyof typeof variants; } & PublicBaseProps; export declare function Flash({ variant, ...props }: FlashProps): JSX.Element; export {};