import { Dayjs } from 'dayjs'; import { DateStringValue } from '../../../types'; interface GetHangingStatusInput { eventStartDate: Dayjs; actualEndDate: Dayjs; weekDays: DateStringValue[]; } export declare function getHangingStatus({ eventStartDate, actualEndDate, weekDays, }: GetHangingStatusInput): 'start' | 'end' | 'both' | 'none'; export {};