export interface TypedOptions {
    enable: boolean;
    throwError: boolean;
    checkArgumentLength: boolean;
    customLogger?: (message: string) => void;
}
export declare class TypedConfig {
    private static getInitialOptions;
    private static options;
    static reset(): void;
    static set(options: TypedOptions): void;
    static get(): TypedOptions;
    private static parseBoolean;
}
