import { type Auth } from '@scalar/workspace-store/entities/auth'; /** * Provides an interface to store and retrieve the selected client value * in local storage. */ export declare const clientStorage: () => { /** * Gets the stored selected client from local storage. */ get: () => string | null; /** * Stores the selected client value in local storage. * @param value The value to store */ set: (value: string) => void; }; /** * Provides an interface to store and retrieve authentication scheme * information in local storage, including both the available schemes and * the user's selected schemes. */ export declare const authStorage: () => { /** * Retrieves and coerces the authentication schemes stored in local storage. */ getAuth: (slug: string) => { secrets: { [x: string]: ({ type: "apiKey"; } & { 'x-scalar-secret-token': string; }) | ({ type: "http"; } & { 'x-scalar-secret-token': string; } & { 'x-scalar-secret-username': string; 'x-scalar-secret-password': string; }) | ({ type: "oauth2"; } & { implicit?: ({ 'x-scalar-secret-client-id': string; } & { 'x-scalar-secret-token': string; } & { 'x-scalar-secret-redirect-uri': string; }) | undefined; password?: ({ 'x-scalar-secret-client-id': string; } & { 'x-scalar-secret-token': string; } & { 'x-scalar-secret-username': string; 'x-scalar-secret-password': string; } & { 'x-scalar-secret-client-secret': string; } & { 'x-scalar-credentials-location'?: "body" | "header" | undefined; }) | undefined; clientCredentials?: ({ 'x-scalar-secret-client-id': string; } & { 'x-scalar-secret-token': string; } & { 'x-scalar-secret-client-secret': string; } & { 'x-scalar-credentials-location'?: "body" | "header" | undefined; }) | undefined; authorizationCode?: ({ 'x-scalar-secret-client-id': string; } & { 'x-scalar-secret-token': string; } & { 'x-scalar-secret-client-secret': string; } & { 'x-scalar-secret-redirect-uri': string; } & { 'x-scalar-credentials-location'?: "body" | "header" | undefined; }) | undefined; }) | { implicit?: ({ refreshUrl: string; scopes: { [x: string]: string; }; } & { 'x-scalar-security-query'?: { [x: string]: string; } | undefined; } & { 'x-scalar-security-body'?: { [x: string]: string; } | undefined; } & { 'x-tokenName'?: string | undefined; } & { authorizationUrl: string; } & { 'x-scalar-secret-client-id': string; } & { 'x-scalar-secret-token': string; } & { 'x-scalar-secret-redirect-uri': string; }) | undefined; password?: ({ refreshUrl: string; scopes: { [x: string]: string; }; } & { 'x-scalar-security-query'?: { [x: string]: string; } | undefined; } & { 'x-scalar-security-body'?: { [x: string]: string; } | undefined; } & { 'x-tokenName'?: string | undefined; } & { tokenUrl: string; } & { 'x-scalar-credentials-location'?: "body" | "header" | undefined; } & { 'x-scalar-secret-client-id': string; } & { 'x-scalar-secret-token': string; } & { 'x-scalar-secret-username': string; 'x-scalar-secret-password': string; } & { 'x-scalar-secret-client-secret': string; } & { 'x-scalar-credentials-location'?: "body" | "header" | undefined; }) | undefined; clientCredentials?: ({ refreshUrl: string; scopes: { [x: string]: string; }; } & { 'x-scalar-security-query'?: { [x: string]: string; } | undefined; } & { 'x-scalar-security-body'?: { [x: string]: string; } | undefined; } & { 'x-tokenName'?: string | undefined; } & { tokenUrl: string; } & { 'x-scalar-credentials-location'?: "body" | "header" | undefined; } & { 'x-scalar-secret-client-id': string; } & { 'x-scalar-secret-token': string; } & { 'x-scalar-secret-client-secret': string; } & { 'x-scalar-credentials-location'?: "body" | "header" | undefined; }) | undefined; authorizationCode?: ({ refreshUrl: string; scopes: { [x: string]: string; }; } & { 'x-scalar-security-query'?: { [x: string]: string; } | undefined; } & { 'x-scalar-security-body'?: { [x: string]: string; } | undefined; } & { 'x-tokenName'?: string | undefined; } & { tokenUrl: string; authorizationUrl: string; } & { 'x-usePkce': "SHA-256" | "plain" | "no"; } & { 'x-scalar-credentials-location'?: "body" | "header" | undefined; } & { 'x-scalar-secret-client-id': string; } & { 'x-scalar-secret-token': string; } & { 'x-scalar-secret-client-secret': string; } & { 'x-scalar-secret-redirect-uri': string; } & { 'x-scalar-credentials-location'?: "body" | "header" | undefined; }) | undefined; type: "openIdConnect"; }; }; selected: { path?: { [x: string]: { [x: string]: { selectedIndex: number; selectedSchemes: {}[]; }; }; } | undefined; document?: { selectedIndex: number; selectedSchemes: {}[]; } | undefined; }; }; /** * Stores the authentication schemes in local storage. * @param value The Auth object to stringify and store. */ setAuth: (slug: string, value: Auth) => void; }; //# sourceMappingURL=storage.d.ts.map