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: "secondary" | "success" | "error" | "warning" | "default"; width: string; copy: "default" | "silent" | "prevent" | "slient"; type: "dark" | "secondary" | "success" | "error" | "warning" | "default" | "lite"; 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;