import { FC, PropsWithChildren } from "react"; import { GanttLocale } from "../../types"; interface Props extends PropsWithChildren { locale: GanttLocale; } export declare const GanttLocaleProvider: FC; export declare const useGanttLocale: () => GanttLocale; export {};