jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
24 lines (23 loc) • 666 B
TypeScript
/**
* @file index.tsx
*
* @fileoverview Displays a facet box (to be used on the sidebar on a search page for example).
*/
import React from 'react';
export declare const FacetChildList: import("styled-components").StyledComponent<"div", any, any, never>;
export interface FacetPopoverProps {
/**
* The contens to go into the box.
*/
children: React.ReactNode;
/**
* The label to display in the trigger.
*
* @default "Open"
*/
label?: string;
}
/**
* A facet popover displays facet information inside a popover element.
*/
export declare const FacetPopover: ({ children, label }: FacetPopoverProps) => JSX.Element;