interface Validator { public_key: string; attestation: string; } interface TOML { VALIDATORS?: Validator[]; } /** * Fetch .toml file from manifest domain. * * @param domain - To fetch the .toml file from. * @throws If there is an error fetching .toml file. * @returns Parsed .toml file. */ declare function fetchToml(domain: string): Promise; export default fetchToml;