import { FC, PropsWithChildren } from 'react'; import { ThemingProps } from '@chakra-ui/react'; export interface ToolbarContextProps { colorScheme?: 'main' | 'neutral' | 'sub'; size?: ThemingProps<'Toolbar'>['size']; } export type ToolbarContextReturn = Required; export declare const ToolbarProvider: FC>; export declare const useToolbarContext: () => Required;