import type { AppConfig } from '@nuxt/schema';
import theme from '#build/b24ui/prose/td';
import type { ComponentConfig } from '../types/utils';
type ProseTd = ComponentConfig<typeof theme, AppConfig, 'td', 'b24ui.prose'>;
export interface ProseTdProps {
    class?: any;
    b24ui?: ProseTd['slots'];
}
export interface ProseTdSlots {
    default(props?: {}): any;
}
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseTdProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseTdProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseTdSlots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
