import React from 'react'; import { NormalTypes } from "../utils/prop-types"; export declare type NoteTypes = NormalTypes; interface Props { type?: NoteTypes; label?: string | boolean; filled?: boolean; className?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type NoteProps = Props & NativeAttrs; export declare const NoteComponent: React.FC>; declare const Note: React.ForwardRefExoticComponent>; export default Note;