import React from 'react'; declare type GroupProps = { /** Top offset applied to ``. */ top?: number; /** Left offset applied to ``. */ left?: number; /** Override `top` and `left` to provide the entire `transform` string. */ transform?: string; /** className to apply to ``. */ className?: string; children?: React.ReactNode; /** ref to underlying ``. */ innerRef?: React.Ref; }; export default function Group({ top, left, transform, className, children, innerRef, ...restProps }: GroupProps & Omit, keyof GroupProps>): JSX.Element; export {}; //# sourceMappingURL=Group.d.ts.map