import { l } from '@atproto/lex'; import * as AgeassuranceDefs from './defs.defs.js'; declare const $nsid = "app.bsky.ageassurance.getState"; export { $nsid }; /** Returns server-computed Age Assurance state, if available, and any additional metadata needed to compute Age Assurance state client-side. */ declare const main: l.Query<"app.bsky.ageassurance.getState", l.ParamsSchema<{ readonly countryCode: l.StringSchema<{}>; readonly regionCode: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ state: l.RefSchema>; metadata: l.RefSchema>; }>>, undefined>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.ageassurance.getState", $params: l.ParamsSchema<{ readonly countryCode: l.StringSchema<{}>; readonly regionCode: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ state: l.RefSchema>; metadata: l.RefSchema>; }>>; //# sourceMappingURL=getState.defs.d.ts.map