import { Contract } from '../contract';
export default class NearContract implements Contract {
    private account;
    static identifierName(): string;
    constructor(account: string);
    private validateLength;
    private validateFormat;
    validate(): {
        valid: boolean;
        error: string;
    } | {
        valid: boolean;
        error: null;
    };
}
