import React from 'react'; import { SnippetTypes, CopyTypes, NormalTypes } from '../utils/prop-types'; interface Props { text?: string | string[]; symbol?: string; toastText?: string; toastType?: NormalTypes; filled?: boolean; width?: string; copy?: CopyTypes; type?: SnippetTypes; className?: string; } declare const defaultProps: { filled: boolean; symbol: string; toastText: string; toastType: "default" | "secondary" | "success" | "warning" | "error"; width: string; copy: "default" | "slient" | "prevent"; type: "default" | "secondary" | "success" | "warning" | "error" | "dark" | "lite"; className: string; }; type NativeAttrs = Omit, keyof Props>; export type SnippetProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit, "symbol" | "type" | "width" | "className" | "copy" | "filled" | "toastText" | "toastType">>; export default _default;