import type { ICON_SIZE } from "discord-client-types/discord_app/design/web"; interface IconProps extends React.ComponentPropsWithoutRef<"svg"> { size?: keyof ICON_SIZE; width?: string | number; height?: string | number; color?: string; colorClass?: string; } type Icon = React.FC; export declare const ClydeIcon: Icon; export declare const LinkIcon: Icon; export declare const MagicWandIcon: Icon; export declare const PaintbrushThinIcon: Icon; export declare const RefreshIcon: Icon; export declare const SettingsIcon: Icon; export declare const TrashIcon: Icon; export declare function PuzzlePieceIcon({ size, width, height, color, colorClass, ...props }: IconProps): React.ReactElement; export declare function RepluggedIcon({ size, width, height, color, colorClass, ...props }: IconProps): React.ReactElement; export declare function GitHubIcon({ size, width, height, color, colorClass, ...props }: IconProps): React.ReactElement; export {};