export interface StickyNoteProps extends React.TextareaHTMLAttributes { /** Aria label for the delete/close button */ arialabelXButton: string; /** Activates the error styling */ error?: boolean; /** Error text to show below the note */ errorText?: string; /** Error text id */ errorTextId?: string; /** Text shown under the textarea */ footerText?: string; /** Function run when clicking the delete/close button */ onXButtonClick?: () => void; /** Function run if user clicks the component while it is disabled */ onClickWhileDisabled?: () => void; /** Sets the data-testid attribute. */ testId?: string; /** Timestamp shown over the textarea */ timestamp: string; /** Classname for the outer wrapper */ wrapperClassName?: string; } declare const StickyNote: React.FC; export default StickyNote;