import { KendoCardProps } from '../card';
export type KendoTimelineCardProps = KendoCardProps & {
    /** @aria role for the card element (button for vertical, tabpanel for horizontal) */
    ariaRole?: string;
    /** @aria aria-describedby pointing to the date element */
    ariaDescribedBy?: string;
    /** @aria aria-live region for vertical cards */
    ariaLive?: 'polite' | 'off';
    /** @aria aria-expanded for collapsible vertical cards */
    ariaExpanded?: boolean;
    /** @aria aria-label for horizontal tabpanel */
    ariaLabel?: string;
    /** @aria tab index for focusable cards */
    cardTabIndex?: number;
};
export declare const TimelineCard: {
    (props: KendoTimelineCardProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    defaultOptions: {};
};
export default TimelineCard;
