/**
 * Props for the TableData component.
 * @prop {string} width - The width of the table data. Default is ''.
 * @prop {boolean} borderless - The borderless state of the table data. Default is false.
 */
interface TableDataProps {
    width?: string;
    borderless?: boolean;
}
declare function __VLS_template(): {
    attrs: Partial<{}>;
    slots: {
        default?(_: {}): any;
    };
    refs: {};
    rootEl: HTMLTableCellElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import("vue").DefineComponent<TableDataProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TableDataProps> & Readonly<{}>, {
    width: string;
    borderless: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLTableCellElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
