/** * html/iframe — variant-styled primitive. */ import { type IframeHTMLAttributes } from "react"; import { type VariantProps } from "class-variance-authority"; declare const iframeVariants: (props?: ({ variant?: "preview" | "inline" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type IframeProps = IframeHTMLAttributes & VariantProps; export declare const Iframe: import("react").ForwardRefExoticComponent & VariantProps<(props?: ({ variant?: "preview" | "inline" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string> & import("react").RefAttributes>; export {}; //# sourceMappingURL=iframe.d.ts.map