import { SelectComponentSchema } from '@open-formulieren/types';
import { Option } from '@open-formulieren/types/lib/formio/common';
import { JSONObject } from '@open-formulieren/types/lib/types';
export declare const checkIsManualOptions: (component: SelectComponentSchema) => component is SelectComponentSchema & {
    data: {
        values: Option[] | undefined;
    };
};
export declare const checkIsReferenceListsOptions: (component: SelectComponentSchema) => component is SelectComponentSchema & {
    openForms: {
        code: string;
        service: string;
    };
};
export declare const checkIsVariableOptions: (component: SelectComponentSchema) => component is SelectComponentSchema & {
    openForms: {
        itemsExpression: string | JSONObject;
    };
};
