interface getHostedZoneByNameInput { hostedZoneName: string; credentials: AWS.Credentials; } interface getHostedZoneByNameOutput { hostedZoneId: string; } /** * Get Hosted Zone Id by providing its name * @param hostedZoneName Hosted zone name */ export declare function getHostedZoneByName({ hostedZoneName, credentials }: getHostedZoneByNameInput): Promise; export {};