import { TooltipProps } from "@krowdy/kds-core/Tooltip"; type Nullable = { [P in keyof T]: T[P] | null; }; interface IEducation { _id: string; career?: string; condition?: string; degree?: string; description?: string; endDate?: string; institutionName?: string; startDate?: string; studyingHere?: boolean; [ P: string ]: any; } interface IExperience { area?: string; companyName?: string; description?: string; endDate?: string; hierarchy?: string; jobPosition?: string; location?: string; startDate?: string; workHere?: boolean; [ P: string ]: any; } interface ICandidate { candidateId: string; curriculum?: string; education?: Nullable[]; email?: string; experience?: Nullable[]; firstName?: string; fullName?: string; jobId: string; lastName?: string; linkedin?: string; nameTask: string; phone?: string; photo?: string; website?: string; [ P: string ]: any; } interface IClasses { actionsContent?: string; drawerHeaderContent?: string; drawerSubHeaderContent?: string; drawerSubHeaderTitle?: string; leaveContent?: string; leaveContentTitle?: string; userAvatarContent?: string; userContent?: string; userDefaultAvatar?: string; userHeader?: string; userHeaderTitles?: string; userName?: string; } interface ProfileCandidateProps { basic?: boolean; candidate?: ICandidate; classes?: IClasses; disableSubHeaderTitle?: boolean; onClickDeleteCandidate?: (ev: React.ChangeEvent) => void; onClickPreviewCV?: () => void; status?: string; TooltipProps?: TooltipProps } declare const ProfileCandidate: React.ComponentType; export default ProfileCandidate;