import { PropsWithChildren } from 'react'; import { FlexProps, ThemingProps } from '@chakra-ui/react'; declare const useToolbarStyles: () => Record; export { useToolbarStyles }; export interface ToolbarProps extends PropsWithChildren, FlexProps { colorScheme?: 'main' | 'neutral' | 'sub'; size?: ThemingProps<'Toolbar'>['size']; } /** * Container for the toolbar. */ export declare const Toolbar: ({ children, ...props }: ToolbarProps) => JSX.Element;