import React from 'react'; type Props = { local?: boolean; template?: string; onComplete?: (resource: string, action: string) => void; onError?: (error: string) => void; }; export default function ApplyComponent({ local, template, onComplete, onError, }: Props): React.JSX.Element; export {};