/** * Returns the pricing model for a given `model`. * * @param model The chat completion model to get the pricing model for. */ declare const _default: (model: string) => { prompt: number; completion: number; }; export default _default;