/// import { IconProps } from './Icon'; interface DropdownIconProps { turned?: boolean; } export default function DropdownIcon({ fill, size, turned, ...iconProps }: IconProps & DropdownIconProps): JSX.Element; export {};