/* eslint-disable */ import type { FunctionComponent } from 'react' import type { CenterProperties } from '../patterns/center.d.mts'; import type { HTMLStyledProps } from '../types/jsx.d.mts'; import type { DistributiveOmit } from '../types/system-types.d.mts'; export interface CenterProps extends CenterProperties, DistributiveOmit, keyof CenterProperties > {} export declare const Center: FunctionComponent