import { SignedValueDto } from './signed-value.dto';
export declare class SignedDataDto {
    encodingMethod: string;
    encodingMethodVersion?: number;
    publicKey?: string;
    signedValues: SignedValueDto[];
    url?: string;
}
