import type { CSSProperties } from 'react';
import type { ActionExecuted } from '../../sdk-types';
export interface AvailabilityCardProps {
    action: ActionExecuted;
    onSlotSelect?: (slot: AvailabilitySlot) => void;
    style?: CSSProperties;
}
export interface AvailabilitySlot {
    start: string;
    end: string;
}
export declare function AvailabilityCard({ action, onSlotSelect, style }: AvailabilityCardProps): import("react/jsx-runtime").JSX.Element;
