export interface IEnquireOptions {
    deferSetup?: boolean;
    match?(): void;
    unmatch?(): void;
    setup?(): void;
    destroy?(): void;
}
