import { ConditionalProperty, SanityDocument } from '@sanity/types'; import React from 'react'; declare type Props = { parent?: Record | undefined; value: unknown; document: SanityDocument; checkProperty: ConditionalProperty; checkPropertyKey: string; callback: (isTruthy: boolean) => void; }; export declare function ConditionalPropertyResolver({ callback, ...props }: Props): React.JSX.Element; export {}; //# sourceMappingURL=ConditionalPropertyResolver.d.ts.map