/**
 * Configuration options for the Squidex Client
 */
export declare class SquidexClientConfiguration {
    /** Base URL for the Squidex API */
    url?: string;
    /** Application name - will be inferred from `clientId` id not defined */
    appName?: string;
    /** Client ID */
    clientId: string;
    /** Client secret */
    clientSecret: string;
    /** Languages to return */
    languages?: string[];
    /** Flatten invariants */
    flatten?: boolean;
    foo?: boolean;
}
