import { ButtonProps } from '@mui/material'; import * as React from 'react'; import { Styles } from '../react-types'; interface OwnProps extends Omit { } export type Props = React.PropsWithChildren & StyleProps; export declare const PxSelectPopoverButton: React.ForwardRefExoticComponent & React.RefAttributes>; declare const useStyles: (params: void, styleOverrides?: { props: { classes?: Record | undefined; } & Record; ownerState?: Record | undefined; } | undefined) => { classes: Record<"label" | "disabled" | "root", string>; theme: import("@mui/material").Theme; css: import("tss-react").Css; cx: import("tss-react").Cx; }; type StyleProps = Styles; export type SelectFilterButtonProps = OwnProps; export {};