import type React from "react"; export interface NoteProps { children: React.ReactNode; /** * will fill available width * @default false */ fullWidth?: boolean; className?: string; isError?: boolean; } export declare const Note: ({ children, fullWidth, className, isError, }: NoteProps) => import("react/jsx-runtime").JSX.Element; export default Note;