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