/// export interface SignupProfessionalStepThreeProps { items: { id: number; label: string; selected: boolean; }[]; onChange: (item: any) => void; selectedItem: number[]; handleAction: () => void; } declare const SignupProfessionalStepThree: ({ items, onChange, selectedItem, handleAction, }: SignupProfessionalStepThreeProps) => JSX.Element; export default SignupProfessionalStepThree;