import type { StandardTextFieldProps } from '@mui/material'; import React from 'react'; /** Props for {@link CopyLinkTextField}. */ export interface CopyLinkTextFieldProps extends StandardTextFieldProps { shareLinkName?: string; shareUrl?: string; } /** Read-only text field that shows a share URL with a copy-to-clipboard adornment. */ export declare const CopyLinkTextField: React.FC; //# sourceMappingURL=CopyLinkTextField.d.ts.map