import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react';
import type { ToastStatus } from '../../components/toast/pharos-toast';
export interface PharosToastProps extends DetailedHTMLProps, HTMLElement> {
/**
* The status to reflect to the user.
*/
status?: ToastStatus;
/**
* Indicates if the toast is open.
*/
open?: boolean;
/**
* The optional id passed to the toast. Can be used as a handle so the toast can be updated.
*/
id?: string;
/**
* Indicates if the toast should persist indefinitely
*/
indefinite?: boolean;
/**
* Fires when the toast has closed
*/
'onPharos-Toast-Close'?: (event: CustomEvent) => void;
}
export declare const PharosToast: FC;
//# sourceMappingURL=pharos-toast.d.ts.map