export declare const commonActions: ({ name: string; title: string; display: string; editable: boolean; initialValue: string; setter: { componentName: string; props: { options: { value: string; title: string; }[]; }; }; } | { name: string; title: string; editable: boolean; initialValue: string; display: string; setter: { componentName: string; props?: undefined; }; } | { name: string; title: string; display: string; initialValue: (currentValue: any, defaultValue: any) => any; setter: { componentName: string; props?: undefined; }; editable?: undefined; } | { name: string; title: string; display: string; accessor(): any; mutator(value: any): void; setter(): { componentName: string; props: { options: any; }; }; hidden(): boolean; editable?: undefined; initialValue?: undefined; } | { name: string; title: string; display: string; hidden: boolean; editable?: undefined; initialValue?: undefined; } | { title: string; name: string; display: string; hidden(): boolean; setter(): { componentName: string; props: { options: any; hasClear: boolean; }; }; editable?: undefined; initialValue?: undefined; })[];