import React from 'react'; import { NormalTypes } from '../utils/prop-types'; export declare const NoteStyle: import("styled-components").StyledComponent<"div", any, {}, never>; interface NoteProps { label?: React.ReactNode; children?: React.ReactNode; type?: NormalTypes; className?: string; invert?: boolean; } declare const Note: React.FC; export default Note;