/// export declare type Orientation = 'horizontal' | 'vertical'; export interface Props { orientation: Orientation; data: Array<{ color: string; value: string; }>; } declare const _default: (props: Props) => JSX.Element; export default _default;