export interface GeneralPropertyOption {
    name: string;
    value: string;
    description: string;
    restrictedTo: string[];
    fieldType?: 'string' | 'color' | 'options';
    placeholder?: string;
    options?: {
        name: string;
        value: string;
    }[];
}
export declare const generalProperties: GeneralPropertyOption[];
