export declare const actionTypes: { UPDATE_CUSTOM_STYLE: string; RESET_CUSTOM_STYLE: string; NOTIFY: string; }; export declare const updateCustomStyle: (style: any) => { type: string; style: any; }; export declare const resetCustomStyle: () => { type: string; }; export declare const updateNotifier: (...keyPath: Array) => { type: string; keyPath: (string | number)[]; };