import 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) => React.JSX.Element;
export default Note;
