import type { ComponentInstance } from 'src/interfaces/ComponentInstance'; import type { FormField } from '../interfaces/types'; interface UseFieldsProps { pageData: ComponentInstance[]; } declare const useFields: ({ pageData }: UseFieldsProps) => { fields: FormField[]; }; export default useFields;