export declare const DEFAULT_CONFIG__WAITING_PAGE: {
    cameraConfig: {
        footer: {
            isFlip: boolean;
            isSwitch: boolean;
        };
        header: {
            isBack: boolean;
            isClose: boolean;
            title: string;
        };
        others: {
            flipHorizontal: boolean;
            isFrontCamera: boolean;
            mask: {
                shape: string;
            };
            preview: {
                show: boolean;
            };
        };
    };
    footerConfig: {
        label: string;
        logo: string;
        showPowerBy: boolean;
    };
    headerConfig: {
        clientLogo: string;
        clientName: string;
        hideClientName: boolean;
        showClientLogo: boolean;
    };
    waitingTime: {
        isShowProgressBar: boolean;
        maxWaitingTime: number;
        waitingTimeMessage: {
            before: string;
            after: string;
        };
        queueMessage: {
            before: string;
            after: string;
        };
    };
    currentQueuePosition: number;
    currentWaitingTime: number;
};
