export declare const getSiteAuth: (siteId: string) => {
    condition: ({
        bosclass: string;
        alias: string;
        subCondition: {
            field: string;
            operator: string;
            value: string;
            number: string;
            logic: string;
        }[];
        type?: undefined;
        from?: undefined;
        to?: undefined;
    } | {
        bosclass: string;
        alias: string;
        subCondition?: undefined;
        type?: undefined;
        from?: undefined;
        to?: undefined;
    } | {
        bosclass: string;
        alias: string;
        type: string;
        from: string;
        to: string;
        subCondition?: undefined;
    })[];
    select: {
        importAuths: string;
    };
};
