import type { Fn } from '@bemedev/types';
export type Arg = {
    invite: string;
    value: string;
};
type Args = {
    errors: Arg[];
    success: Arg[];
};
type ConstructLength = <P extends any[]>(fn: Fn<[...P, string], string>, error: Fn<[...P, string], string | undefined>) => (...params: P) => (params: Args) => void;
export declare const constructLength: ConstructLength;
export {};
//# sourceMappingURL=length.fixture.d.ts.map