///
import { ButtonProps } from './buttons/Button';
import { TagProps } from './Tag';
import { StackProps } from './View/Stack';
export declare type DockProps = StackProps;
export declare const Dock: (props: DockProps) => JSX.Element;
export declare type DockButtonProps = ButtonProps & {
label?: string;
labelProps?: Partial;
visible?: boolean;
id: string;
showLabelOnHover?: boolean;
};
export declare const DockButton: (props: DockButtonProps) => JSX.Element;
export declare type TagLabelProps = TagProps & {
arrowSize?: number;
towards?: 'left' | 'right' | 'top' | 'bottom';
};
//# sourceMappingURL=Dock.d.ts.map