import { type CSSObject } from '@emotion/styled'; import { type SystemStyleObject } from '../css-fn'; import { type As, type StyledAntdComponent } from './types'; type StyleResolverProps = SystemStyleObject & { theme: Record; sx?: SystemStyleObject; css?: CSSObject; }; export interface StyledOptions { shouldForwardProp?(prop: string): boolean; baseStyle?: SystemStyleObject | ((props: StyleResolverProps) => SystemStyleObject); } export declare function styled(component: T, options?: StyledOptions): StyledAntdComponent; export {};