import { SvgProperties as BaseSvgProperties } from '@pmndrs/uikit/internals';
import { ReactNode, RefAttributes } from 'react';
import { R3FEventMap } from './utils.js';
import { ComponentInternals } from './ref.js';
export type SvgProperties = BaseSvgProperties<R3FEventMap> & {
    children?: ReactNode;
    name?: string;
};
export type SvgRef = ComponentInternals<BaseSvgProperties<R3FEventMap>>;
export declare const Svg: (props: SvgProperties & RefAttributes<SvgRef>) => ReactNode;
