import React from 'react'; import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel'; import './ActiveSvg.scss'; type ActiveSvgContainerProps = { content: React.ReactNode; onTouch?: FunctionTypeVoidToVoid; onClick?: FunctionTypeVoidToVoid; disabled?: boolean; }; declare const ActiveSvg: ({ content, onTouch, onClick, disabled, }: ActiveSvgContainerProps) => import("react/jsx-runtime").JSX.Element; export default ActiveSvg; //# sourceMappingURL=ActiveSvg.d.ts.map