import { ElementType, FC } from "react";
type Props = {
    jalali: boolean;
    startOfWeek: number;
    components?: {
        titles?: string[];
        wrapper?: ElementType<{
            jalali: boolean;
            startOfWeek: number;
        }>;
    };
};
export declare const TitleOfWeek: FC<Props>;
export {};
