import type { StackProps } from '@mui/material'; import React from 'react'; import { type ShareLinkProps } from './lib/index.js'; /** Props for {@link CopyLinkStack}. */ export interface CopyLinkStackProps extends ShareLinkProps, StackProps { addToXnsName?: boolean; copiedLinkText?: string; copyLinkText?: string; xnsEndColor?: string; xnsStartColor?: string; } /** Displays a share URL (optionally highlighting an XNS name) with a copy button. */ export declare const CopyLinkStack: React.FC; //# sourceMappingURL=CopyLinkStack.d.ts.map