import { type StyledProps } from "./Styled"; /** * moaui Styled Icon (Single) * * @param props - iconName, opacity, toButton, onClick * @example * * @returns React.ReactElement */ declare const Icon: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; iconName: string; opacity: number; toButton: boolean; }; export default Icon; export { type StyledProps as IconProps, SampleProps as IconSample, }; //# sourceMappingURL=index.d.ts.map