export declare enum FLOW {
    SIGN_IN = "SIGN_IN",
    SIGN_UP = "SIGN_UP"
}
export interface ISignProps {
    /**
     * Enum value for Sign type
     */
    signType: FLOW;
}
