import { type Size } from './types'; type IconContainerProps = { children: React.ReactNode; size: Size; isHidden: boolean; position: 'left' | 'right'; }; /** * __Icon container__ * * Positions a toggle's check and close icons. */ declare const IconContainer: ({ children, size, isHidden, position, }: IconContainerProps) => JSX.Element; export default IconContainer;