export interface MainOptions {
    action?: Function | void;
    onClick?: Function;
    timer?: number;
    showCountdown?: boolean;
    text?: string;
    icon?: string;
    font?: number;
    animate?: boolean;
    injectHTML?: string;
    useOverlay?: boolean;
}
export interface OverlayOptions {
    text?: string;
    icon?: string;
    font?: number;
    animate?: boolean;
}
export interface OverlayDelayOptions {
    timer: number;
    text?: string;
    font?: number;
}
