export declare const ChildComp: {
    state: {
        result: string;
        count: number;
    };
    inputs: (s: any, F: any) => {
        inc: () => Promise<void>;
        changed: (value: any) => Promise<void>;
    };
    actions: {
        Inc: () => (s: any) => void;
    };
    interfaces: {};
};
export declare const ReceptorComp: {
    state: {};
    inputs: (s: any, F: any) => {
        onInit: () => Promise<void>;
        myEvent: (count: any) => Promise<number>;
    };
    actions: {};
    interfaces: {};
};
