import { Page } from 'playwright';
import { $ZodIssue } from 'zod/v4/core';
import { OtsarHahayalOptions } from './index.js';
import { CreditCardsResponse } from './schemas.js';
export declare function getCreditCards(page: Page, options: OtsarHahayalOptions, headers: Record<string, string>): Promise<{
    data: CreditCardsResponse | null;
    isValid: boolean | null;
    errors: $ZodIssue[] | null;
}>;
