import Icon from "../../Icon/Icon.js";
export default function ExpandIcon({ open, iconProps, }: {
    /** Currently expanded state */
    open: boolean;
    /** Optional icon props */
    iconProps?: Partial<React.ComponentProps<typeof Icon>>;
}): import("react/jsx-runtime").JSX.Element;
