import { ForwardRefComponent } from "../utils/polymorphic.js"; import React from "react"; //#region src/Flash/Flash.d.ts type FlashProps = React.ComponentPropsWithoutRef<'div'> & { className?: string; variant?: 'default' | 'warning' | 'success' | 'danger'; full?: boolean; }; declare const Flash: ForwardRefComponent<"div", FlashProps>; //#endregion export { FlashProps, Flash as default };