export interface AlertProps {
    text: string;
    onClosePress: Function;
    show: boolean;
    header?: string | undefined;
    btnText?: string | undefined;
    showBorderBottom?: boolean;
    type?: string;
    color?: string;
    pressCloseOnOutsideClick?: boolean;
    alertStyles?: object;
    headerStyles?: object;
    textStyles?: object;
    buttonStyles?: object;
}
