/// <reference types="jest" />
declare global {
    namespace jest {
        interface Matchers<R, T> {
            /**
             * Assert whether a date is saturday or not.
             * @example
             * expect(new Date()).toBeSaturday()
             */
            toBeSaturday(): R;
        }
    }
}
export declare function toBeSaturday(this: jest.MatcherUtils, received: Date): {
    pass: boolean;
    message: () => string;
};
