import { AlertColor } from '../../feedback/snack-bar/StyledAlert'; import { SnackbarProviderProps } from 'notistack'; import { FC, PropsWithChildren, ReactNode } from 'react'; export type MessageProps = SnackbarProviderProps & { severity?: AlertColor; persist?: boolean; closeButton?: boolean; className?: string; id?: string; type?: 'loading'; }; /** * @figmaNode none — bespoke copy affordance (no DS component). Wraps `children` with a copy button * that appears on hover; composes the aligned `StyledButton` (Tertiary/text, ContentCopyIcon 20) + * `StyledTooltip`. Only own styling = the `gama-500` hover accent (token). Token-clean/theme-safe. */ export declare const CopyWrapper: FC () => void; }>>;