import React from 'react';
import { ActionProps } from './action.props.js';
/**
 * @name ShowAction
 * @category Actions
 * @description Shows a given record.
 * @component
 * @private
 */
declare const Show: React.FC<ActionProps>;
declare const OverridableShow: React.ComponentType<ActionProps & {
    OriginalComponent?: React.ComponentType<ActionProps> | undefined;
}>;
export { OverridableShow as default, OverridableShow as Show, Show as OriginalShow, };
