import React from 'react'; interface CreateSimpleWizardProps { presentResources?: string[]; presentActions?: string[]; presentRoles?: string[]; onComplete?: (resource: string, action: string) => void; onError?: (error: string) => void; } export default function CreateSimpleWizard({ presentResources, presentActions, presentRoles, onComplete, onError, }: CreateSimpleWizardProps): React.JSX.Element; export {};