import * as React from 'react'; /** @public */ export interface ClearPinButtonProps extends React.ButtonHTMLAttributes { } /** * The `ClearPinButton` is a basic html button with the added ability to signal * the `LayoutContext` that it should display the grid view again. * @remarks * This component works only inside a `LayoutContext`. * * @example * ```tsx * * Back to grid view * * ``` * @public */ export declare const ClearPinButton: (props: ClearPinButtonProps & React.RefAttributes) => React.ReactNode; //# sourceMappingURL=ClearPinButton.d.ts.map