import type { VNode } from 'vue';
import type { AppConfig } from '@nuxt/schema';
import theme from '#build/b24ui/prose/p';
import type { ComponentConfig } from '../../types/tv';
type ProseP = ComponentConfig<typeof theme, AppConfig, 'p', 'b24ui.prose'>;
export interface ProsePProps {
    /**
     * @defaultValue false
     */
    small?: boolean;
    /**
     * @defaultValue 'default'
     */
    accent?: ProseP['variants']['accent'];
    class?: any;
    b24ui?: ProseP['slots'];
}
export interface ProsePSlots {
    default(props?: {}): VNode[];
}
declare const _default: typeof __VLS_export;
export default _default;
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<ProsePProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProsePProps> & Readonly<{}>, {
    small: boolean;
    accent: ProseP["variants"]["accent"];
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProsePSlots>;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
