import React from 'react'; import { CopyTypes } from '../../utils/prop-types'; interface Props { text?: string | string[]; width?: string; copy?: CopyTypes; className?: string; } declare const defaultProps: { width: string; copy: "default" | "slient" | "prevent"; className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type SnippetProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Pick>; export default _default;