import type { FormVisibilityProps } from './Visibility';
export type { FormVisibilityProps };
export default function useVisibility(props?: Partial<FormVisibilityProps>): {
    check: ({ visible, visibleWhen, visibleWhenNot, pathDefined, pathUndefined, pathTruthy, pathFalsy, pathTrue, pathFalse, inferData, filterData, }?: Partial<FormVisibilityProps>) => boolean;
};
