import * as React from 'react'; interface Props { /** * Override the root div props with this if needed. */ rootProps?: Record; /** * What you want to render in the note insert area. */ children?: React.ReactNode; /** * Optional alertMessage message to render at the bottom of the note. */ alertMessage?: React.ReactNode; /** * Optional css class overrides. */ className?: string; /** * Ref passed to the root element. */ rootRef?: React.LegacyRef; disablePadding?: boolean; isPreview?: boolean; /**Controls the round bit with the icon for pulling the card. default true for right, false for left. */ iconFlip?: boolean; } /** * SVG container to render components in a Lovepop note insert. */ declare const NoteInsertContainer: ({ alertMessage, rootProps, children, className, rootRef, disablePadding, isPreview, iconFlip }: Props) => React.ReactElement; export default NoteInsertContainer;