import React from 'react'; import { SnippetTypes } from '../utils/prop-types'; interface Props { type?: SnippetTypes; invert?: boolean; className?: string; } declare const defaultProps: { type: "default" | "secondary" | "success" | "warning" | "error" | "dark" | "lite"; invert: boolean; className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type TagProps = Props & typeof defaultProps & NativeAttrs; export declare type TagColors = { color: string; bgColor: string; borderColor: string; }; declare const _default: React.ComponentType & Pick>; export default _default;