6 lines
285 B
TypeScript
6 lines
285 B
TypeScript
import { BoxProps } from '../../primitives/Box';
|
|
export interface MainProps extends BoxProps<'main'> {
|
|
labelledBy?: string | undefined;
|
|
}
|
|
export declare const Main: ({ labelledBy, ...props }: MainProps) => import("react/jsx-runtime").JSX.Element;
|
|
//# sourceMappingURL=Main.d.ts.map
|