export type LargeOptionTilePreviewType = "image-3-4" | "image-1-1" | "color"; export type LargeOptionTileProps = { /** Label text displayed below the preview */ label: string; /** Optional value text displayed below the label */ value?: string; /** Type of preview: "image-3-4" (portrait), "image-1-1" (square), or "color" (color swatch) */ previewType?: LargeOptionTilePreviewType; /** Image URL for image preview types */ previewSrc?: string; /** CSS color string for previewType="color" */ color?: string; /** Additional className for custom styling */ className?: string; } & Omit, "type"> & React.RefAttributes; export declare function LargeOptionTile({ label, value, previewType, previewSrc, color, className, ref, ...props }: LargeOptionTileProps): import("react").JSX.Element; export declare namespace LargeOptionTile { var displayName: string; } //# sourceMappingURL=LargeOptionTile.d.ts.map