/** * This hook provides RichText with the `formatTypes` and its derived props from * experimental format type settings. * * @param {Object} options Options * @param {Array} options.allowedFormats Allowed formats * @param {boolean} options.withoutInteractiveFormatting Whether to clean the interactive formatting or not. * @param {Object} options.__unstableFormatTypeHandlerContext Context object passed to experimental format type methods. */ export function useFormatTypes({ allowedFormats, withoutInteractiveFormatting, __unstableFormatTypeHandlerContext, }: { allowedFormats: any[]; withoutInteractiveFormatting: boolean; __unstableFormatTypeHandlerContext: Object; }): { formatTypes: any; prepareHandlers: any[]; valueHandlers: any[]; changeHandlers: any[]; dependencies: any[]; }; //# sourceMappingURL=use-format-types.d.ts.map