import * as constructs from 'constructs';
export interface FindPrefixListProps {
    readonly prefixListName: string;
}
/**
 * Enforces the use of IMDSv2, without causing replacement of the Instance.
 */
export declare class FindPrefixList extends constructs.Construct {
    prefixListId: string;
    constructor(scope: constructs.Construct, id: string, props: FindPrefixListProps);
}
