export declare const SigningProfilePlatformId: {
    readonly AwsLambdaSha384ecdsa: "AWSLambda-SHA384-ECDSA";
    readonly NotationOcisha384ecdsa: "Notation-OCI-SHA384-ECDSA";
};
export type SigningProfilePlatformId = (typeof SigningProfilePlatformId)[keyof typeof SigningProfilePlatformId];
export declare const SigningProfileSignatureValidityPeriodType: {
    readonly Days: "DAYS";
    readonly Months: "MONTHS";
    readonly Years: "YEARS";
};
/**
 * The time unit for signature validity: DAYS | MONTHS | YEARS.
 */
export type SigningProfileSignatureValidityPeriodType = (typeof SigningProfileSignatureValidityPeriodType)[keyof typeof SigningProfileSignatureValidityPeriodType];
