import type { CSSProperties } from 'react';
export interface DateSeparatorProps {
    date: Date;
    style?: CSSProperties;
}
export declare function DateSeparator({ date, style }: DateSeparatorProps): import("react/jsx-runtime").JSX.Element;
