declare const HSchedule: ({
    props: string[];
    setup(__props: any, { expose: __expose }: {
        expose: any;
    }): {
        calendarRef: import("vue").Ref<any, any>;
        currentDate: import("vue").Ref<Date, Date>;
        scheduleData: import("vue").Ref<{}, {}>;
        calendarDateList: import("vue").Ref<never[], never[]>;
        props: any;
        activeName: import("vue").Ref<string, string>;
        scheduleDrawer: import("vue").WritableComputedRef<any, any>;
        getHolidayApi: () => Promise<void>;
        updateCalendarApi: (data: any) => Promise<void>;
        fetchHolidays: () => Promise<void>;
        toggleSchedule: (date: any) => void;
        prevMonth: () => void;
        nextMonth: () => void;
        today: () => void;
        formatDate: (date: any) => string;
        handleClick: (tab: any, event: any) => void;
        ref: typeof import("vue").ref;
        computed: typeof import("@vue/reactivity").computed;
        onMounted: (hook: any, target?: import("vue").ComponentInternalInstance | null | undefined) => void;
        readonly StarFilled: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
        readonly Plus: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
        readonly getHoliday: typeof import("./api").getHoliday;
        readonly updateCalendar: typeof import("./api").updateCalendar;
    };
} & import("vue").Plugin<any[]> & {
    label?: string | undefined;
}) & {
    label: string;
};
export default HSchedule;
