import { ReactNode } from 'react';
import { Datum } from '@spectrum-charts/vega-spec-builder';
export type ChildElement<T> = T | string | boolean | Iterable<ReactNode>;
export type Children<T> = ChildElement<T> | ChildElement<T>[];
export type OnClickCallback = (datum: Datum) => void;
export interface ClickableChartProps {
    /** Callback that will be run when a point/section is clicked */
    onClick?: OnClickCallback;
}
//# sourceMappingURL=util.types.d.ts.map