export declare const localPaths: { output: string; setup: string; contribute: string; finalize: string; pot: string; zkeys: string; wasm: string; contributions: string; transcripts: string; attestations: string; finalZkeys: string; finalPot: string; finalTranscripts: string; finalAttestations: string; verificationKeys: string; verifierContracts: string; }; /** * Return the access token, if present. * @returns - the access token if present, otherwise undefined. */ export declare const getLocalAccessToken: () => string | unknown; /** * Check if the access token exists in the local storage. * @returns */ export declare const checkLocalAccessToken: () => boolean; /** * Set the access token. * @param token - the access token to be stored. */ export declare const setLocalAccessToken: (token: string) => void; /** * Delete the stored access token. */ export declare const deleteLocalAccessToken: () => void; /** * Return the Bandada identity, if present. * @returns - the Bandada identity if present, otherwise undefined. */ export declare const getLocalBandadaIdentity: () => string | unknown; /** * Check if the Bandada identity exists in the local storage. * @returns */ export declare const checkLocalBandadaIdentity: () => boolean; /** * Set the Bandada identity. * @param identity - the Bandada identity to be stored. */ export declare const setLocalBandadaIdentity: (identity: string) => void; /** * Delete the stored Bandada identity. */ export declare const deleteLocalBandadaIdentity: () => void; /** * Return the authentication method, if present. * @returns - the authentication method if present, otherwise undefined. */ export declare const getLocalAuthMethod: () => string | unknown; /** * Check if the authentication method exists in the local storage. * @returns */ export declare const checkLocalAuthMethod: () => boolean; /** * Set the authentication method. * @param method - the authentication method to be stored. */ export declare const setLocalAuthMethod: (method: string) => void; /** * Delete the stored authentication method. */ export declare const deleteLocalAuthMethod: () => void; /** * Get the complete local file path. * @param cwd - the current working directory path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the complete local path to the file. */ export declare const getCWDFilePath: (cwd: string, completeFilename: string) => string; /** * Get the complete PoT file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the complete PoT path to the file. */ export declare const getPotLocalFilePath: (completeFilename: string) => string; /** * Get the complete zKey file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the complete zKey path to the file. */ export declare const getZkeyLocalFilePath: (completeFilename: string) => string; /** * Get the complete contribution file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the complete contribution path to the file. */ export declare const getContributionLocalFilePath: (completeFilename: string) => string; /** * Get the contribution attestation file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the the contribution attestation path to the file. */ export declare const getAttestationLocalFilePath: (completeFilename: string) => string; /** * Get the transcript file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the the transcript path to the file. */ export declare const getTranscriptLocalFilePath: (completeFilename: string) => string; /** * Get the complete final zKey file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the complete final zKey path to the file. */ export declare const getFinalZkeyLocalFilePath: (completeFilename: string) => string; /** * Get the complete final PoT file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the complete final PoT path to the file. */ export declare const getFinalPotLocalFilePath: (completeFilename: string) => string; /** * Get the complete verification key file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the complete final verification key path to the file. */ export declare const getVerificationKeyLocalFilePath: (completeFilename: string) => string; /** * Get the complete verifier contract file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the complete final verifier contract path to the file. */ export declare const getVerifierContractLocalFilePath: (completeFilename: string) => string; /** * Get the complete final attestation file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the complete final final attestation path to the file. */ export declare const getFinalAttestationLocalFilePath: (completeFilename: string) => string; /** * Get the final transcript file path. * @param completeFilename - the complete filename of the file (name.ext). * @returns - the the final transcript path to the file. */ export declare const getFinalTranscriptLocalFilePath: (completeFilename: string) => string;