import IAppendable from "./IAppendable";
import Nullable from "./utils/Nullable";
import { ExtractProps } from "./utils/extractProps";
export default interface IDummyIK extends IAppendable {
    target: Nullable<string>;
    hips: Nullable<string>;
    spine0: Nullable<string>;
    spine1: Nullable<string>;
    spine2: Nullable<string>;
    neck: Nullable<string>;
    leftShoulder: Nullable<string>;
    leftArm: Nullable<string>;
    leftForeArm: Nullable<string>;
    leftHand: Nullable<string>;
    rightShoulder: Nullable<string>;
    rightArm: Nullable<string>;
    rightForeArm: Nullable<string>;
    rightHand: Nullable<string>;
    leftThigh: Nullable<string>;
    leftLeg: Nullable<string>;
    leftFoot: Nullable<string>;
    leftToeBase: Nullable<string>;
    rightThigh: Nullable<string>;
    rightLeg: Nullable<string>;
    rightFoot: Nullable<string>;
    rightToeBase: Nullable<string>;
}
export declare const dummyIKSchema: Required<ExtractProps<IDummyIK>>;
export declare const dummyIKDefaults: Partial<import("./utils/Defaults").default<IDummyIK>>;
