import * as React from 'react'; export interface Props { /** * Component's HTML Element * * @default 'div' */ component?: string; /** * Object with Tailwind CSS colors classes * */ colors?: { /** * Toast bg in iOS theme * * @default 'bg-toast-ios' */ bgIos?: string; /** * Toast bg in Material theme * * @default 'bg-toast-material' */ bgMaterial?: string; /** * Toast text color * * @default 'text-white' */ text?: string; }; /** * Makes Toast background translucent (with `backdrop-filter: blur`) in iOS theme * * @default true */ translucent?: boolean; /** * Toast button content */ button?: React.ReactNode; /** * Toast position (only on wide screens). Can be `left`, `center` or `right` * * @default 'left' */ position?: 'left' | 'center' | 'right'; /** * Allows to open/close Toast and set its initial state * * @default false */ opened?: boolean; } interface ToastProps {} interface ToastProps extends React.HTMLAttributes {} interface ToastProps extends Props {} declare const Toast: React.FunctionComponent; export default Toast;