import { FunctionComponent, PropsWithChildren } from 'react';

interface NudgeBoxProps extends PropsWithChildren {
    description: string;
    notification?: boolean;
    title: string;
}
declare const NudgeBox: FunctionComponent<NudgeBoxProps>;

export { NudgeBox as default };
export type { NudgeBoxProps };
