import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
interface CalendarFooterProps extends ViewProps {
    children?: ReactNode;
}
declare function CalendarFooter(props: CalendarFooterProps): JSX.Element;
export default CalendarFooter;
