import { BackedDataSourceProps, BaseDataSource } from 'aws-cdk-lib/aws-appsync';
import { Construct } from 'constructs';
export interface SearchableDataSourceProps extends BackedDataSourceProps {
    readonly region: string;
    readonly endpoint: string;
}
export declare class SearchableDataSource extends BaseDataSource {
    constructor(scope: Construct, id: string, props: SearchableDataSourceProps);
}
//# sourceMappingURL=searchable-datasource.d.ts.map