import { VariantProps } from 'class-variance-authority'; import { ClassProp } from 'class-variance-authority/types'; import type * as React from "react"; declare const iconTileVariants: (props?: ({ size?: "xs" | "sm" | "lg" | "md" | "xl" | null | undefined; } & ClassProp) | undefined) => string; export type IconTileProps = VariantProps & React.ComponentProps<"span">; declare function IconTile({ size, className, ...props }: IconTileProps): React.JSX.Element; export { IconTile, iconTileVariants }; //# sourceMappingURL=icon-tile.d.ts.map