import { IllustrationAsset, BaseSvgAsset } from './types.js';
export type LibraryAsset = IllustrationAsset<BaseSvgAsset & {
    readonly name: 'Library';
}>;
/**
 * Library illustration asset
 * @example
 * ```tsx
 * import { Illustration } from '@payfit/unity-illustrations'
 * import Library from '@payfit/unity-illustrations/assets/Library'
 *
 * <Illustration
 *   illustration={Library}
 *   alt="Library illustration"
 *   size="md"
 * />
 * ```
 */
declare const Library: LibraryAsset;
export default Library;
