import React from "react"; export interface WeekdayProps { className?: string; title?: string; children?: React.ReactNode; } export declare const Weekday: ({ className, title, children, ...props }: WeekdayProps) => React.JSX.Element; export default Weekday;