import { INoteContext } from './NoteContext'; import { ContentProps, NoteProps, TitleProps } from './NoteTypes'; export declare const Note: { ({ children, state, ...rest }: NoteProps & INoteContext): import("react/jsx-runtime").JSX.Element; displayName: string; Title: { ({ actions, children, ...rest }: TitleProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; Content: { ({ actions, author, children, className, id, onTextAreaChange, self, subtext, maxLength, translations, ...rest }: ContentProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; }; export declare const Title: { ({ actions, children, ...rest }: TitleProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export declare const Content: { ({ actions, author, children, className, id, onTextAreaChange, self, subtext, maxLength, translations, ...rest }: ContentProps): import("react/jsx-runtime").JSX.Element; displayName: string; };