import { optional } from '@synnaxlabs/x'; import { ReactElement } from 'react'; import { Theming } from '../../theming'; import { ContainerProps } from './Container'; import { EntriesProps, EntryData } from './Entries'; export interface SimpleProps extends Omit, Pick { data?: optional.Optional[]; position?: ContainerProps["value"]; onPositionChange?: ContainerProps["onChange"]; allowEntryVisibleChange?: boolean; background?: Theming.Shade; } export declare const Simple: ({ data, onColorChange, onLabelChange, onVisibleChange, position, onPositionChange, allowEntryVisibleChange, background, ...rest }: SimpleProps) => ReactElement | null; //# sourceMappingURL=Simple.d.ts.map