import * as CSS from 'csstype'; export type PaddingTypes = { /** * Set the padding * @defaultValue 0 * @example * ```tsx * * // or * * // or * * ``` */ padding?: string | number; /** * Set the paddingX * @defaultValue 0 * @example * ```tsx * * ``` */ paddingX?: CSS.StandardLonghandProperties['paddingLeft'] & CSS.StandardLonghandProperties['paddingRight'] | number; /** * Set the paddingY * @defaultValue 0 * @example * ```tsx * * ``` */ paddingY?: CSS.StandardLonghandProperties['paddingTop'] & CSS.StandardLonghandProperties['paddingBottom'] | number; /** * Set the paddingTop * @defaultValue 0 * @example * ```tsx * * ``` */ paddingTop?: CSS.StandardLonghandProperties['paddingTop'] | number; /** * Set the paddingBottom * @defaultValue 0 * @example * ```tsx * * ``` */ paddingBottom?: CSS.StandardLonghandProperties['paddingBottom'] | number; /** * Set the paddingLeft * @defaultValue 0 * @example * ```tsx * * ``` */ paddingLeft?: CSS.StandardLonghandProperties['paddingLeft'] | number; /** * Set the paddingRight * @defaultValue 0 * @example * ```tsx * * ``` */ paddingRight?: CSS.StandardLonghandProperties['paddingRight'] | number; }; export declare const hasPaddingProps: (props: any) => boolean; export declare const PaddingProps: (props: any) => any; //# sourceMappingURL=index.d.ts.map