/** * [Pay as you go](https://iexcloud.io/docs/api/#pay-as-you-go) * Used to toggle Pay-as-you-go on your account. * * @param allow Pass true to enable Pay-as-you-go, or false to disable. */ export declare const payAsYouGo: (allow: boolean) => Promise; export interface PayAsYouGoParams { /** Your SK API token. */ readonly token: boolean; /** Pass true to enable Pay-as-you-go, or false to disable. */ readonly allow: boolean; }