import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, SlotProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "span"; export interface InnerIconListProps extends SlotProps, InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * Whether or not the icons of the list should look disabled. */ disabled?: boolean; } export declare function InnerIconList({ as, children, disabled, forwardedRef, ...rest }: InnerIconListProps): JSX.Element; export declare namespace InnerIconList { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/icon--default-story) */ export declare const IconList: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type IconListProps = ComponentProps; export {};