export type PlaceholderTileProps = { /** Icon component from @photoroom/icons */ icon: React.ComponentType>; /** Label text displayed below the icon */ label: string; /** Click handler for the placeholder */ onClick: () => void; /** Optional aria-label for accessibility (defaults to label prop) */ "aria-label"?: string; /** Additional className for custom styling */ className?: string; } & Omit, "onClick" | "type"> & React.RefAttributes; export declare function PlaceholderTile({ icon: Icon, label, onClick, "aria-label": ariaLabel, className, ref, ...props }: PlaceholderTileProps): import("react").JSX.Element; export declare namespace PlaceholderTile { var displayName: string; } //# sourceMappingURL=PlaceholderTile.d.ts.map