import { KeyAlgorithmEnum } from './KeyAlgorithmEnum';
import { KeyFlagEnum } from './KeyFlagEnum';
import { KeyStatusEnum } from './KeyStatusEnum';
/** Domain's DNSSEC Key */
export interface Key {
    /** Algorithm number of the DNSSEC key */
    algorithm: KeyAlgorithmEnum;
    /** Flag of the DNSSEC key */
    flags: KeyFlagEnum;
    /** ID of the DNSSEC key */
    id: number;
    /** Public key */
    publicKey: string;
    /** Key status of the DNSSEC key */
    status: KeyStatusEnum;
    /** Tag of the DNSSEC key */
    tag: number;
}
//# sourceMappingURL=Key.d.ts.map