export declare type BytesLike = string | Uint8Array;
export declare type BooleanLike = 'true' | 'false' | 'yes' | 'no' | boolean;
export declare type NumberLike = number | bigint | string;
export declare type FunctionLike = string | SolidityFunction;
export interface SolidityFunction {
    address: string;
    selector: string;
}
