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