export interface ICoWShedOptions {
    factoryAddress: string;
    proxyCreationCode?: string;
    implementationAddress: string;
}
export interface ICoWShedCall {
    target: string;
    value: bigint;
    callData: string;
    allowFailure: boolean;
    isDelegateCall: boolean;
}
export interface ICoWShedOptions {
    factoryAddress: string;
    proxyCreationCode?: string;
    implementationAddress: string;
}
export declare const DOMAIN_TYPE: {
    EIP712Domain: {
        type: string;
        name: string;
    }[];
};
export declare const COW_SHED_712_TYPES: {
    ExecuteHooks: {
        type: string;
        name: string;
    }[];
    Call: {
        type: string;
        name: string;
    }[];
};
