export declare function checkModifier(type: string, name: string): boolean;
export declare function verifyType(type: string): string;
export declare function verifyIdentifier(value: string): string;
declare type StateInputValue = {
    constant?: boolean;
    payable?: boolean;
    stateMutability?: string;
    type?: string;
};
declare type StateOutputValue = {
    constant: boolean;
    payable: boolean;
    stateMutability: string;
};
export declare function verifyState(value: StateInputValue): StateOutputValue;
export {};
//# sourceMappingURL=Checkers.d.ts.map