import { StudioLayouts } from '.'; import type { StudioLayoutBasePropsConfig } from './StudioBaseSchema'; export interface StudioLayoutTextConfig extends StudioLayoutBasePropsConfig { /** * Type of the layout component. */ type: `${StudioLayouts.text}`; /** * Content of the text. * @example "Hello, World!" */ content: string; }