import type { IFont } from './Types'; /** * Props interface for the FontEditorPreviewElement. * * @public */ export interface IFontEditorPreviewElementProps { /** * The font to preview. */ font: IFont | null; /** * The preview text to display. */ previewText: string; /** * Whether to show editable preview text. */ editable: boolean; /** * The font sizes to preview at. */ previewSizes: Array; /** * Whether the component is disabled. */ disabled: boolean; } //# sourceMappingURL=IFontEditorPreviewElementProps.d.ts.map