/** * Extracts padding style-props from an object, separating them from other props. * Responsive values (arrays and objects like `{ base: "200", md: "400" }`) * are supported — they are extracted by key name unchanged. * @param props The props object to separate * @returns A tuple containing [paddingProps, otherProps] */ export declare function extractPaddingProps(props: T): [Record, Omit];