import type { DelegationResponse, NotificationPreferences } from "./types.mjs"; /** * Asserts that the given value is a valid `DelegationResponse[]`. * * @param data - The unknown value to validate. * @throws If the value does not match the expected schema. */ export declare function assertDelegationResponseArray(data: unknown): asserts data is DelegationResponse[]; /** * Asserts that the given value is a valid `NotificationPreferences`. * * @param data - The unknown value to validate. * @throws If the value does not match the expected schema. */ export declare function assertNotificationPreferences(data: unknown): asserts data is NotificationPreferences; //# sourceMappingURL=validators.d.mts.map