import type { PresentationElementSize } from '../presentations.types';
interface FreeTextProps {
    componentType: 'freeText';
    size?: PresentationElementSize;
    content: string;
    height?: number;
    background?: boolean;
}
export type { FreeTextProps };
