import React from 'react'; import { IComponentBaseProps } from '../types'; declare const horizontalOptions: { start: string; center: string; end: string; }; declare const verticalOptions: { top: string; middle: string; bottom: string; }; export type ToastProps = React.HTMLAttributes & { horizontal?: keyof typeof horizontalOptions; vertical?: keyof typeof verticalOptions; className?: string; } & IComponentBaseProps; declare const Toast: React.ForwardRefExoticComponent & { horizontal?: "start" | "center" | "end" | undefined; vertical?: "top" | "middle" | "bottom" | undefined; className?: string | undefined; } & IComponentBaseProps & React.RefAttributes>; export default Toast;