import * as React from "react"; type Props = { show: boolean; onHide: (shouldUpdate: boolean) => void; suffixTitle?: string; }; export declare const CreateProfile: ({ show, onHide, suffixTitle }: Props) => React.JSX.Element; export {};