import type { AwsRegion } from './regions'; type Miliseconds = { /** * @deprecated Typo in property name. Use `durationInMilliseconds` instead. */ durationInMiliseconds: number; } | { durationInMilliseconds: number; }; export type EstimatePriceInput = { region: AwsRegion; memorySizeInMb: number; diskSizeInMb: number; lambdasInvoked: number; } & Miliseconds; export declare const estimatePrice: ({ region, memorySizeInMb, diskSizeInMb, lambdasInvoked, ...other }: EstimatePriceInput) => number; export {};