import { ComponentWithAs as _, IconButtonProps as ChakraIconButtonProps, ThemingProps } from '@chakra-ui/react'; import { ThemeButtonColorScheme } from '../theme/components/Button'; export interface IconButtonProps extends ChakraIconButtonProps { /** * Size of the icon button. */ size?: ThemingProps<'Button'>['size']; /** * Color scheme of button. */ colorScheme?: ThemingProps<'IconButton'>['colorScheme'] | ThemeButtonColorScheme; } export declare const IconButton: _<"button", IconButtonProps>;