interface NoteProps {
    /** @deprecated */
    style?: React.CSSProperties;
    checkboxNote?: boolean;
    /** @deprecated */
    className?: string;
    heading?: string;
    children?: React.ReactNode;
}
export declare function Note({ heading, children, style, checkboxNote, className }: NoteProps): import("react/jsx-runtime").JSX.Element;
export default Note;
