import { StudioLayouts } from '.'; import { StudioLayoutFieldBaseConfig } from './StudioBaseSchema'; import { SelectSize } from './StudioSelectFieldSchema'; export { SelectSize } from './StudioSelectFieldSchema'; export interface StudioLayoutSelectFontFieldConfig extends StudioLayoutFieldBaseConfig { /** * Type of the layout component. */ type: `${StudioLayouts.selectFontField}`; /** * The size of the field. * @examples "l" | "m" | "s" | "xs" | "x2s" */ size?: `${SelectSize}`; /** * The empty state for the field. * @example "Select your font" */ emptyState?: string; }