import type { FC } from 'react'; import type { CSSObject } from 'styled-components'; import type { SVGProps } from 'twitch-core-ui'; export declare const DEFAULT_SVG_SIZE_REM = 2; export interface SizeProps { fillParent?: boolean | undefined; /** * Height in rem units. Defaults to 2. */ heightRem?: number; /** * Width in rem units. Defaults to 2. */ widthRem?: number; } export declare function getContainerSize({ fillParent, heightRem, widthRem, }: SizeProps): CSSObject; export declare const ScContainer: import("styled-components").StyledComponent; interface RemSVGProps extends Omit, SizeProps { } export declare const RemSVG: FC; export {}; //# sourceMappingURL=index.d.ts.map