import { FunctionCall } from 'geostyler-style';
export type ArgumentType = 'number' | 'string' | 'boolean' | 'unknown' | 'case' | 'step';
export type FunctionConfig = {
    name: FunctionCall<any>['name'];
    type: 'number' | 'string' | 'boolean' | 'unknown';
    description?: string;
    args?: {
        infinite?: boolean;
        type: ArgumentType;
        placeholder?: string;
        label?: string;
    }[];
};
export declare const functionConfigs: FunctionConfig[];
