import { RegistrationResponse, AstraSyncOptions, AgentFormat } from './types';
export declare class AstraSync {
    private api;
    constructor(options: AstraSyncOptions);
    register(agentData: any): Promise<RegistrationResponse>;
    verify(agentId: string): Promise<boolean>;
    detect(agentData: any): AgentFormat;
    health(): Promise<boolean>;
}
export * from './types';
export { detectAgentFormat } from './utils/detector';
export { calculateTrustScore } from './utils/trustScore';
//# sourceMappingURL=index.d.ts.map