import type { TicketPinBoardSort } from './TicketPinBoard.types'; type TicketPinBoardControlsProps = { showStrings: boolean; sort: TicketPinBoardSort; unfiledOnly: boolean; onResetPins: () => void; onSortChange: (sort: TicketPinBoardSort) => void; onToggleStrings: () => void; onToggleUnfiledOnly: () => void; }; export declare const TicketPinBoardControls: ({ showStrings, sort, unfiledOnly, onResetPins, onSortChange, onToggleStrings, onToggleUnfiledOnly, }: TicketPinBoardControlsProps) => import("react/jsx-runtime").JSX.Element; export {};