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