import type { VNode } from 'vue';
import type { AppConfig } from '@nuxt/schema';
import theme from '#build/b24ui/prose/th';
import type { ComponentConfig } from '../../types/tv';
type ProseTh = ComponentConfig<typeof theme, AppConfig, 'th', 'b24ui.prose'>;
export interface ProseThProps {
    align?: 'left' | 'center' | 'right';
    class?: any;
    b24ui?: ProseTh['slots'];
}
export interface ProseThSlots {
    default(props?: {}): VNode[];
}
declare const _default: typeof __VLS_export;
export default _default;
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<ProseThProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseThProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseThSlots>;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
