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