export declare enum PadToastType { Success = 0, Error = 1, Info = 2, Warning = 3 } export interface PadToastData { type: PadToastType; title?: string; message?: string; iconKey?: string; width?: number | string; }