import type { Editor as TiptapEditor } from '@tiptap/core'; import type { TranslationFunction, TranslationPack } from '@pega/cosmos-react-core'; declare const formatMapping: { readonly p: "normal"; readonly li: "normal"; readonly ul: "normal"; readonly ol: "normal"; readonly div: "normal"; readonly h1: "heading-1"; readonly h2: "heading-2"; readonly h3: "heading-3"; readonly h4: "heading-4"; readonly '': "normal"; }; type FormatType = keyof typeof formatMapping; type Format = (typeof formatMapping)[FormatType]; export declare const getTextFormats: (t: TranslationFunction, osx?: boolean) => { id: Format; text: string; subText: string; type: FormatType; }[]; declare const TextSelect: ({ osx, editor, ...restProps }: { osx: boolean; editor: TiptapEditor; }) => import("react/jsx-runtime").JSX.Element; export default TextSelect; //# sourceMappingURL=TextSelect.d.ts.map