import { type ToastDuration } from '@coinbase/cds-common/overlays/ToastProvider'; import { type ToastBaseProps } from './Toast'; export type ShowToastOptions = Omit & ToastDuration; export declare const useToast: () => { show: (text: string, options?: ShowToastOptions) => void; hide: () => void; clearQueue: () => void; }; //# sourceMappingURL=useToast.d.ts.map