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