import { ComponentProps, ReactNode } from "react"; import { FlexAlignmentProp, FlexOrientationProp } from "../../layout"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "div"; export interface InnerToolbarProps extends InternalProps, Omit, "display" | "alignItems" | "flex" | "flexDirection" | "flexWrap" | "justifyContent"> { /** * The horizontal alignment of the elements. */ alignX?: FlexAlignmentProp; /** * The vertical alignment of the elements. */ alignY?: FlexAlignmentProp; /** * Whether or not the toolbar should autoFocus the first tabbable element on render. */ autoFocus?: boolean | number; /** * React children. */ children: ReactNode; /** * Whether or not the toolbar elements are disabled. */ disabled?: boolean; /** * Whether the toolbar take up the width of its container. */ fluid?: ResponsiveProp; /** * The orientation of the elements. */ orientation?: FlexOrientationProp; /** * Whether or not the elements are forced onto one line or can wrap onto multiple lines */ wrap?: ResponsiveProp; } export declare function InnerToolbar({ alignX, alignY, as, autoFocus, children, disabled, forwardedRef, gap, orientation, wrap, ...rest }: InnerToolbarProps): JSX.Element; export declare namespace InnerToolbar { var defaultElement: string; } /** * A toolbar is a container for grouping a set of controls, such as buttons, menubuttons, or checkboxes. * * [Documentation](https://orbit.sharegate.design/?path=/docs/toolbar--default-story) */ export declare const Toolbar: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type ToolbarProps = ComponentProps; export {};