/// import { TToastType } from "../DSToast.types"; interface ActionButtonProps { toastType: TToastType; label: string; onClick: () => void; } export declare function ActionButton({ toastType, label, onClick }: ActionButtonProps): JSX.Element; export {};