export type Config = {
    vpn: {
        server: string;
        group: string;
        groupName: string;
        username: string;
        password: string;
    };
    rdp: {
        server: string;
    };
    onlyVpn: boolean;
};
export declare const schema: {
    vpn: {
        type: string;
        properties: {
            server: {
                type: string;
            };
            group: {
                type: string;
            };
            groupName: {
                type: string;
            };
            username: {
                type: string;
            };
            password: {
                type: string;
            };
        };
    };
    rdp: {
        type: string;
        properties: {
            server: {
                type: string;
            };
        };
    };
    onlyVpn: {
        type: string;
    };
};
