import React from "react"; interface Props { classes?: string; height?: string; width?: string; viewBox?: string; dataTestId?: string; style?: React.CSSProperties; focusable?: boolean; preserveAspectRatio?: string; children: React.ReactNode; } export interface IconProps { classes?: string; style?: React.CSSProperties; } export declare const Icon: ({ classes, height, width, viewBox, dataTestId, style, focusable, preserveAspectRatio, children, }: Props) => React.JSX.Element; export {};