interface Props {
    attributes?: Record<string, any>;
}
/** Renders a self-closing HTML `<param>` element. Accepts optional attributes. */
declare const Param: import("svelte").Component<Props, {}, "">;
type Param = ReturnType<typeof Param>;
export default Param;
