form-test-victor
Version:
# Performant forms and wizard library for React
12 lines • 419 B
TypeScript
import { VALIDATION_OUTCOME } from '../../shared';
import { PlaceholderContent } from '../types';
interface UsePlaceholder {
handleOnNext: () => void;
handleOnPrevious: () => void;
placeholderContent: PlaceholderContent;
isLoading: boolean;
stepStatus: VALIDATION_OUTCOME;
}
export declare function usePlaceholder(): UsePlaceholder;
export {};
//# sourceMappingURL=usePlaceholder.d.ts.map