import { IListIF } from '../../types.vue';

interface Props {
    item: IListIF;
    index: number;
    showLine: boolean;
    ganttProgressBarId: string;
}
declare function __VLS_template(): {
    childrenSlot?(_: {
        width: number;
        activeWidth: number;
        surplusWidth: number;
        overflowWidth: number | undefined;
        status?: import('../../types.vue').GanttDataStatusProps;
        ganttId: string;
        left: number;
        progress: number;
        isParent: boolean;
        parentIsEmpty: boolean;
        isEmpty: boolean;
        overtimeWidth?: number;
        timeInfoList: import('../../types.vue').TimeInfo[];
        children?: import('../../types.vue').GanttDataProps[];
    }): any;
};
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
type __VLS_TypePropsToRuntimeProps<T> = {
    [K in keyof T]-?: {} extends Pick<T, K> ? {
        type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
    } : {
        type: import('vue').PropType<T[K]>;
        required: true;
    };
};
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
