export interface FTextContentProps {
    /**
     * HTML or raw text content as string
     */
    source: string;
    /**
     * Allowed tags
     */
    allowedTags?: (keyof HTMLElementTagNameMap)[];
    /**
     * Denser styling
     */
    dense?: boolean;
}
declare const _default: import('vue').DefineComponent<FTextContentProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FTextContentProps> & Readonly<{}>, {
    allowedTags: (keyof HTMLElementTagNameMap)[];
    dense: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;
