import * as React from "react"; import { iconIndex } from "./iconIndex"; import { CommonStyleProps } from "../systemHelpers"; export declare type IconIndex = typeof iconIndex; export declare type IconProps = React.SVGProps & CommonStyleProps & { stroke?: string; }; export declare const Icon: { ({ icon, ...props }: React.SVGProps & import("../systemHelpers").SystemProps & import("styled-system").BorderProps>, import("csstype").Property.Background> & import("styled-system").ColorProps>, string | number | symbol> & import("styled-system").FlexboxProps>> & import("styled-system").GridProps>> & import("styled-system").LayoutProps>> & import("styled-system").SpaceProps>, string | number | symbol> & import("styled-system").TypographyProps>> & { stroke?: string | undefined; } & { icon: keyof IconIndex; }): JSX.Element; displayName: string; };