///
import { type MediaAssetType } from "@prismicio/editor-ui";
interface MediaLibraryProps {
/**
* The type of media to limit the media library to.
* If different than `all`, the media library will disable the asset type filter
* @default all
*/
assetType?: MediaAssetType;
/**
* A container in which the actions (search bar & upload button) are rendered.
* If not provided, the actions will be rendered inside the media library.
*/
actionContainer?: Element | null;
onSelectedChange?: (ids: Set) => void;
}
export declare function MediaLibrary(props: MediaLibraryProps): JSX.Element;
export {};