import { SanityDocument, ConditionalProperty } from '@sanity/types'; /** * Resolve a callback function to a boolean using the passed arguments * * @beta This API will change. DO NOT USE IN PRODUCTION. * @internal Not a stable API yet */ export interface ConditionalPropertyProps { parent?: unknown; value: unknown; document?: SanityDocument; checkProperty: ConditionalProperty; checkPropertyKey: string; } export declare const unstable_useConditionalProperty: ({ checkProperty, ...props }: ConditionalPropertyProps) => boolean; //# sourceMappingURL=useConditionalProperty.d.ts.map