type __VLS_Slots = {
    header?: () => any;
    default?: (scope: {
        row: any;
        $index: number;
    }) => any;
};
interface Props {
    prop?: string;
    label?: string;
    width?: number | string;
    align?: 'left' | 'center' | 'right';
    cssClass?: string;
    /** 列固定位置，'left'/true 固定在左侧，'right' 固定在右侧 */
    fixed?: 'left' | 'right' | boolean;
}
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
    align: "left" | "center" | "right";
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
