import { FunctionComponent, PropsWithChildren } from 'react';
import { NavigationSizing } from '../../Platform/Navigation/Navigation.js';

interface NudgeProps extends PropsWithChildren {
    description: string;
    notification?: boolean;
    title: string;
    navigationSizing: NavigationSizing;
}
declare const Nudge: FunctionComponent<NudgeProps>;

export { Nudge as default };
export type { NudgeProps };
