import { VNode } from 'preact';
import { HTMLAttributes } from 'preact/compat';
export type AdditionalActionsAlertProps = Array<{
label: string;
onClick: (event: Event) => void;
}>;
export interface InLineAlertProps {
type?: 'success' | 'warning' | 'error';
text?: string;
icon?: VNode>;
}
export type statusTypes = '' | 'success' | 'error' | 'pending';
export interface ValidateLengthConfigProps {
status?: statusTypes;
icon?: statusTypes;
message?: string;
}
//# sourceMappingURL=notification.types.d.ts.map