import { Schema } from './utils'; /** * Given a Sanity schema-type, remove the named option. * * The result is memoized. * * @param type Sanity schema, typically props.type in custom components. * @param optionName named option to remove, recursively from type. * * @see unsetOption */ export declare function useUnsetOption(type: T, optionName: string): T; /** * Given a Sanity schema-type, remove inputComponent from the schema, recursively. * * The result is memoized. * * @param type Sanity schema, typically props.type in custom components. * * @see unsetInputComponent */ export declare function useUnsetInputComponent(type: T): T; //# sourceMappingURL=hooks.d.ts.map