/// import type { PaddingValues } from './types'; interface Props { values: PaddingValues; onChange: (newValue: { [edge: string]: string; }) => void; } /** * This component is specifically for handling the sizing & spacing margin input. Legacy pages have their values * defined in pixels. Left and right padding will use percentage values from now on so that they are responsive. * * This input needs to handle whether or not padding is in pixels or percentages. Previously, pixel values were * used for padding but we've migrated to using percentages. However, we cannot migrate pixels to percentages * during entity migrations as we don't have access to the parent component. * */ export declare const PercentagePaddingInput: ({ values, onChange }: Props) => JSX.Element; export {};