/** * SelectableButton - Internal styled button component with active state support * * This is an internal component extracted from NavBarTabButton (isCompact=true behavior). * Used for components that need button elements with selectable/active states: * - Pagination page buttons * - Future: DatePicker day buttons * * NOT exported from main index - internal use only. * * Base styles extracted from NavBarTabButton lines 12-54 */ export declare const SelectableButton: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme; as?: React.ElementType; } & { isActive?: boolean; }, React.DetailedHTMLProps, HTMLButtonElement>, {}>;