import React from "react"; export interface FontSize { id: string; name: string; value: string; } export declare const FONT_SIZES_FALLBACK: FontSize[]; interface FontSizeActionProps { fontSizes?: FontSize[]; } export declare const FontSizeAction: (({ fontSizes }: FontSizeActionProps) => React.JSX.Element) & { FONT_SIZES_FALLBACK: FontSize[]; }; export {};