7 lines
278 B
TypeScript
7 lines
278 B
TypeScript
|
|
import React from 'react';
|
||
|
|
import type { FlexProps } from './interface';
|
||
|
|
declare const Flex: React.ForwardRefExoticComponent<FlexProps<import("../_util/type").AnyObject> & {
|
||
|
|
children?: React.ReactNode | undefined;
|
||
|
|
} & React.RefAttributes<HTMLElement>>;
|
||
|
|
export default Flex;
|