import "./iconStyles.css"; import type { JSX } from "react"; type IconProps = JSX.IntrinsicElements["svg"]; /** * Discord's link icon, as seen in the Message context menu "Copy Message Link" option */ export declare function LinkIcon({ height, width, className }: IconProps): JSX.Element; /** * Discord's copy icon, as seen in the user panel popout on the right of the username and in large code blocks */ export declare function CopyIcon(props: IconProps): JSX.Element; /** * Discord's open external icon, as seen in the user profile connections */ export declare function OpenExternalIcon(props: IconProps): JSX.Element; export declare function ImageIcon(props: IconProps): JSX.Element; export declare function InfoIcon(props: IconProps): JSX.Element; export declare function OwnerCrownIcon(props: IconProps): JSX.Element; /** * Discord's screenshare icon, as seen in the connection panel */ export declare function ScreenshareIcon(props: IconProps): JSX.Element; export declare function ImageVisible(props: IconProps): JSX.Element; export declare function ImageInvisible(props: IconProps): JSX.Element; export declare function Microphone(props: IconProps): JSX.Element; export declare function CogWheel(props: IconProps): JSX.Element; export declare function ReplyIcon(props: IconProps): JSX.Element; export declare function DeleteIcon(props: IconProps): JSX.Element; export declare function PlusIcon(props: IconProps): JSX.Element; export declare function NoEntrySignIcon(props: IconProps): JSX.Element; export declare function SafetyIcon(props: IconProps): JSX.Element; export declare function NotesIcon(props: IconProps): JSX.Element; export declare function FolderIcon(props: IconProps): JSX.Element; export declare function LogIcon(props: IconProps): JSX.Element; export declare function RestartIcon(props: IconProps): JSX.Element; export declare function PaintbrushIcon(props: IconProps): JSX.Element; export declare function PencilIcon(props: IconProps): JSX.Element; export declare function GithubIcon(props: IconProps): JSX.Element; export declare function WebsiteIcon(props: IconProps): JSX.Element; /** * A question mark inside a square, used as a placeholder icon when no other icon is available */ export declare function PlaceholderIcon(props: IconProps): JSX.Element; export declare function MainSettingsIcon(props: IconProps): JSX.Element; export declare function PluginsIcon(props: IconProps): JSX.Element; export declare function CloudIcon(props: IconProps): JSX.Element; export declare function BackupRestoreIcon(props: IconProps): JSX.Element; export declare function UpdaterIcon(props: IconProps): JSX.Element; export declare function PatchHelperIcon(props: IconProps): JSX.Element; export declare function VesktopSettingsIcon(props: IconProps): JSX.Element; export declare function CloudDownloadIcon(props: IconProps): JSX.Element; export declare function CloudUploadIcon(props: IconProps): JSX.Element; export {};