/** * Copyright 2020, Verizon Media * Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms. */ import React from 'react'; export declare const DnSwitch: React.FC; export interface DnSwitchProps { id?: string; name?: string; offLabel?: string; onLabel?: string; checked?: boolean; isDisabled?: boolean; onChange?: React.ChangeEventHandler; className?: string; } //# sourceMappingURL=DnSwitch.d.ts.map