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