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