import { location } from '@synnaxlabs/x'; import { FunctionComponent, ReactElement } from 'react'; import { Flex } from '../flex'; export interface BarProps extends Omit { location?: location.Crude; size?: string | number; bordered?: boolean; } declare const BaseBar: ({ location: propsLoc, size, className, style: propsStyle, bordered, ...rest }: BarProps) => ReactElement; export interface BarContentProps extends Omit, "ref"> { } type BaseBarType = typeof BaseBar; declare const Start: FunctionComponent; declare const End: FunctionComponent; declare const Center: FunctionComponent; declare const Content: FunctionComponent; declare const AbsoluteCenter: FunctionComponent; export interface BarType extends BaseBarType { Start: typeof Start; Center: typeof Center; End: typeof End; AbsoluteCenter: typeof AbsoluteCenter; Content: typeof Content; } export declare const Bar: BarType; export {}; //# sourceMappingURL=Bar.d.ts.map