import { Record } from '../../types'; import { ShowControllerProps } from './useShowController'; /** * Hook to read the show controller props from the ShowContext. * * Mostly used within a (e.g. as a descendent of ). * * But you can also use it without a . In this case, it is up to you * to pass all the necessary props. * * The given props will take precedence over context values. * * @typedef {Object} ShowControllerProps * * @returns {ShowControllerProps} create controller props * * @see useShowController for how it is filled * */ export declare const useShowContext: (props?: Partial>) => Partial>;