import React from "react"; export interface CenterProps { children: React.ReactNode; [rest: string]: any; } export default function Center({ children, ...rest }: CenterProps): JSX.Element;