import type { ServiceApiParams, ServiceDataParams } from '../../../common'; export type StaticPixData = { Amount: number; Description: string; Reference: string; CallbackUrl: string; }; export type StaticPixResponse = { Id: number; Identifier: string; QrCode: string; Key: string; }; export declare function createStaticPix({ payment }: ServiceApiParams, { data }: ServiceDataParams<{ data: StaticPixData; }>): Promise;