import React from 'react'; type Props = { onComplete: (action: string, resource: string) => void; onError: (error: string) => void; }; export default function PolicyStepComponent({ onComplete, onError }: Props): React.JSX.Element | null; export {};