import React from 'react'; import { NormalTypes } from '../utils/prop-types'; interface Props { type?: NormalTypes; label?: string | boolean; small?: boolean; filled?: boolean; className?: string; } declare const defaultProps: { type: "default" | "secondary" | "success" | "warning" | "error"; label: string | boolean; small: boolean; filled: boolean; className: string; }; type NativeAttrs = Omit, keyof Props>; export type NoteProps = Props & typeof defaultProps & NativeAttrs; export declare const Note: React.FC>; declare const _default: React.ComponentType & Omit, "small" | "label" | "type" | "className" | "filled">>; export default _default;