import { Struct } from '@polkadot/types';
import { OptionContent } from './content';
import { OptionText } from './utils';
export declare type ProfileUpdateType = {
    content: OptionContent;
    gpg: OptionText;
};
export declare class ProfileUpdate extends Struct {
    constructor(value?: ProfileUpdateType);
    set content(value: OptionContent);
    set gpg(value: OptionText);
}
