import * as React from 'react'; import { ChildProps, ExpandInteractiveArea } from '../types'; declare type Props = React.HTMLAttributes & Pick & { size: number; onClick?: () => void; expandInteractiveArea?: ExpandInteractiveArea; onStatusChanged?: (isActive: boolean) => void; }; export declare type BarProps = Omit; export declare const Bar: (props: Pick) => JSX.Element; export {};