/// import type { CSSPosition } from '../../inputs/types'; import type { PaddingValues } from './types'; export declare const labelsToValues: Record; interface Props { values: PaddingValues; onChange: (newValue: { [edge: string]: string; }) => void; } export declare const PaddingInput: ({ values, onChange }: Props) => JSX.Element; export {};