import React from 'react'; export interface NoteProps extends React.ComponentPropsWithRef<'div'> { action?: React.ReactNode; variant?: 'info' | 'success' | 'good' | 'warning' | 'error'; fill?: boolean; label?: React.ReactNode; } export declare const Note: React.ForwardRefExoticComponent & React.RefAttributes>;