import type { DraftContent } from '../types'; type BlockType = 'unstyled' | 'blockquote' | 'header-one' | 'header-two' | 'header-three' | 'header-four' | 'header-five' | 'header-six'; export declare const createContent: (text: string, type?: BlockType) => DraftContent; export {}; //# sourceMappingURL=createContent.d.ts.map