export interface MsgBoxFeedbackTypes {
    title: string;
    message: string;
    type: Types;
    show?: boolean;
    mode: 'fit' | 'full';
}
export type Types = 'error' | 'success' | 'warning' | 'info' | 'loading';
//# sourceMappingURL=msg-box-feeback.types.d.ts.map