import React from 'react'; import { ButtonProps } from './button'; import { ButtonGroupConfig } from './button-group-context'; export declare const filterPropsWithGroup: (props: React.PropsWithChildren, config: ButtonGroupConfig) => ButtonProps; export declare const getCssColors: (props: React.PropsWithChildren) => { bg: string; color: string; transform: string; boxShadow: string; pe: string; } | { px: string; py: string; color?: undefined; backgroundImage?: undefined; transform?: undefined; boxShadow?: undefined; pe?: undefined; pl?: undefined; pr?: undefined; } | { px?: undefined; py?: undefined; color?: undefined; backgroundImage?: undefined; transform?: undefined; boxShadow?: undefined; pe?: undefined; pl?: undefined; pr?: undefined; } | { color: string; backgroundImage: string; transform: string; boxShadow: string; pe: string; pl: string; pr: string; px?: undefined; py?: undefined; } | { bg: string; borderColor: string; color: string; transform: string; boxShadow: string; pe: string; px?: undefined; py?: undefined; backgroundImage?: undefined; pl?: undefined; pr?: undefined; };