export declare class Authorizer {
    licenseKey: string;
    domainName: string;
    response: object;
    private bypassKeys;
    constructor(licenseKey?: string);
    authorized(): boolean;
    authorize(): boolean;
}
