import React from 'react'; export interface ActionableToastProps { id: number; secondsVisible: number; title?: string; message: React.ReactNode; buttonLabel?: React.ReactNode; newToast?: boolean; action?(): void; onClose?(): void; removeToast(id: number): void; } export declare function ActionableToast(props: ActionableToastProps): JSX.Element;