import { Options } from '../index'; export interface Platform { addToTrustStores(certificatePath: string, options?: Options): Promise; removeFromTrustStores(certificatePath: string): void; addDomainToHostFileIfMissing(domain: string): Promise; deleteProtectedFiles(filepath: string): void; readProtectedFile(filepath: string): Promise; writeProtectedFile(filepath: string, contents: string): Promise; } declare const _default: Platform; export default _default;