import { type Page } from 'playwright';
import type { $ZodIssue } from 'zod/v4/core';
import { OtsarHahayalOptions } from './index.js';
import type { CreditCardBillingPeriod, TimelessDateString } from './types.js';
export declare function getCreditCardTransactions(page: Page, headers: Record<string, string>, options: OtsarHahayalOptions, card: {
    resourceId: string;
    cardType: number;
    debitDay: number;
}, month: TimelessDateString): Promise<{
    data: CreditCardBillingPeriod | null;
    isValid: boolean | null;
    errors: $ZodIssue[] | null;
}>;
