import { FC, Ref } from 'react';
import { HTMLChakraProps, RecipeProps, UnstyledProp } from '@chakra-ui/react/styled-system';
import { ToolbarProps as RaToolbarProps } from 'react-aria-components';
type ToolbarRecipeProps = {
/** Size variant of the toolbar */
size?: RecipeProps<"nimbusToolbar">["size"];
/** Layout orientation of the toolbar */
orientation?: RecipeProps<"nimbusToolbar">["orientation"];
/** Visual style variant of the toolbar */
variant?: RecipeProps<"nimbusToolbar">["variant"];
} & UnstyledProp;
export type ToolbarRootSlotProps = Omit, "translate"> & {
translate?: "yes" | "no";
};
type DefaultExcludedProps = "css" | "asChild" | "as";
export type ToolbarProps = Omit & Omit & {
ref?: Ref;
};
export type ToolbarComponent = FC;
export {};