import { SxProp } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { CommonSystemProps } from './system-props'; declare const defaultElement = "div"; declare type Variant = 'info' | 'success' | 'warn' | 'error'; export declare type FlashProps = SxProp & CommonSystemProps & { variant?: Variant; }; declare type FlashComponent = ForwardRefComponent; export declare const Flash: FlashComponent; export {};