import type { ReactNode } from 'react'; import type { ContrastChecker } from '../internal/checks/contrastChecker'; export declare const applyStyle: (({ style, debugStyle, children, contrastCheckerCallback, }: { style: Record | Function; debugStyle: Record; children?: ReactNode; contrastCheckerCallback?: ((_: ContrastChecker) => Record) | undefined; }) => any[] | { [x: string]: any; } | undefined) | null;